.cid-botones{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:50px 0;
}

.cid-btn{
    display:flex;
    align-items:center;
    gap:15px;

    width:340px;
    padding:18px 22px;

    background:#2f455c;
    border-radius:6px;

    color:#fff !important;
    text-decoration:none !important;

    transition:all .25s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.cid-btn:hover{
    background:#1f3244;
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.cid-btn svg{
    width:42px;
    height:42px;
    fill:#fff;
    flex-shrink:0;
}

.cid-text{
    display:flex;
    flex-direction:column;
}

.cid-text strong{
    font-size:18px;
    font-weight:600;
}

.cid-text span{
    font-size:13px;
    opacity:0.85;
    margin-top:3px;
}